home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 3239 / 3239.xpi / chrome / inbasicph.jar / content / jCoding.js < prev    next >
Text File  |  2010-01-21  |  12KB  |  375 lines

  1. /***  http://www.webtoolkit.info/javascript-base64.html***/
  2. var PhProxy_Base64 = {
  3.     // private property
  4.     _keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
  5.  
  6.     _modifications_before_decode_for_phproxy : function (input) {
  7.         try {
  8.             var temp = decodeURIComponent(decodeURIComponent(input));
  9.         } catch(e) {
  10.             temp = input;
  11.         }
  12.         //Remove beginning;  http://www.libanonchat.org/proxy/index.php?q=aHR0cDovL3d3dy5nb29nbGUuY29tL3dlYmhwP2dsPXVz--&hl=2e9 >> aHR0cDovL3d3dy5nb29nbGUuY29tL3dlYmhwP2dsPXVz--&hl=2e9
  13.         try {
  14.             temp = (/\?q=.*/.exec(temp) ||  /\?____pgfa=.*/.exec(temp) || "").toString()
  15.                    .replace(/\?q=/, "").replace(/\?____pgfa=/, "");
  16.         } catch (e) {
  17.             //This case only happens on  phproxy server example: http://www.libanonchat.org/proxy/
  18.             temp = "";
  19.         }
  20.         //Remove end; aHR0cDovL3d3dy5nb29nbGUuY29tL3dlYmhwP2dsPXVz--&hl=2e9 >> aHR0cDovL3d3dy5nb29nbGUuY29tL3dlYmhwP2dsPXVz
  21.         var extra = (/-*&hl.*/.exec(temp) || "").toString(); 
  22.         extra = extra.replace(/-+&hl=.*/,"").replace(/^\&/, "?"); //Modify extra
  23.         temp = unescape(temp).replace(/-*&hl.*/,"");
  24.  
  25.         return [temp, extra];
  26.     },
  27.     _modifications_before_decode_general : function (input) {
  28.         //Remove rest of non-Base64 chars
  29.         return input.replace(/[^A-Za-z0-9\+\/\=].*/, "");
  30.     },
  31.     // public method for encoding    
  32.     encode : function (input) {
  33.         var output = "";
  34.         var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
  35.         var i = 0;
  36.  
  37.         input = PhProxy_Base64._utf8_encode(input);
  38.  
  39.         while (i < input.length) {
  40.  
  41.             chr1 = input.charCodeAt(i++);
  42.             chr2 = input.charCodeAt(i++);
  43.             chr3 = input.charCodeAt(i++);
  44.  
  45.             enc1 = chr1 >> 2;
  46.             enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
  47.             enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
  48.             enc4 = chr3 & 63;
  49.  
  50.             if (isNaN(chr2)) {
  51.                 enc3 = enc4 = 64;
  52.             } else if (isNaN(chr3)) {
  53.                 enc4 = 64;
  54.             }
  55.  
  56.             output = output +
  57.             this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
  58.             this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);
  59.  
  60.         }
  61.  
  62.         return output;
  63.     },
  64.  
  65.     // public method for decoding
  66.     decode : function (input, type) {
  67.         var extra = "";
  68.         if (type != "Glype") 
  69.             [input, extra] = this._modifications_before_decode_for_phproxy(input);
  70.         input = this._modifications_before_decode_general(input);
  71.         var output = "";
  72.         var chr1, chr2, chr3;
  73.         var enc1, enc2, enc3, enc4;
  74.         var i = 0;
  75.  
  76.         input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
  77.  
  78.         while (i < input.length) {
  79.  
  80.             enc1 = this._keyStr.indexOf(input.charAt(i++));
  81.             enc2 = this._keyStr.indexOf(input.charAt(i++));
  82.             enc3 = this._keyStr.indexOf(input.charAt(i++));
  83.             enc4 = this._keyStr.indexOf(input.charAt(i++));
  84.  
  85.             chr1 = (enc1 << 2) | (enc2 >> 4);
  86.             chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
  87.             chr3 = ((enc3 & 3) << 6) | enc4;
  88.  
  89.             output = output + String.fromCharCode(chr1);
  90.  
  91.             if (enc3 != 64) {
  92.                 output = output + String.fromCharCode(chr2);
  93.             }
  94.             if (enc4 != 64) {
  95.                 output = output + String.fromCharCode(chr3);
  96.             }
  97.  
  98.         }
  99.  
  100.         output = PhProxy_Base64._utf8_decode(output);
  101.  
  102.         return output + extra;
  103.  
  104.     },
  105.  
  106.     // private method for UTF-8 encoding
  107.     _utf8_encode : function (string) {
  108.         string = string.replace(/\r\n/g,"\n");
  109.         var utftext = "";
  110.  
  111.         for (var n = 0; n < string.length; n++) {
  112.  
  113.             var c = string.charCodeAt(n);
  114.  
  115.             if (c < 128) {
  116.                 utftext += String.fromCharCode(c);
  117.             }
  118.             else if((c > 127) && (c < 2048)) {
  119.                 utftext += String.fromCharCode((c >> 6) | 192);
  120.                 utftext += String.fromCharCode((c & 63) | 128);
  121.             }
  122.             else {
  123.                 utftext += String.fromCharCode((c >> 12) | 224);
  124.                 utftext += String.fromCharCode(((c >> 6) & 63) | 128);
  125.                 utftext += String.fromCharCode((c & 63) | 128);
  126.             }
  127.  
  128.         }
  129.  
  130.         return utftext;
  131.     },
  132.  
  133.     // private method for UTF-8 decoding
  134.     _utf8_decode : function (utftext) {
  135.         var string = "";
  136.         var i = 0;
  137.         var c = c1 = c2 = 0;
  138.  
  139.         while ( i < utftext.length ) {
  140.  
  141.             c = utftext.charCodeAt(i);
  142.  
  143.             if (c < 128) {
  144.                 string += String.fromCharCode(c);
  145.                 i++;
  146.             }
  147.             else if((c > 191) && (c < 224)) {
  148.                 c2 = utftext.charCodeAt(i+1);
  149.                 string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
  150.                 i += 2;
  151.             }
  152.             else {
  153.                 c2 = utftext.charCodeAt(i+1);
  154.                 c3 = utftext.charCodeAt(i+2);
  155.                 string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
  156.                 i += 3;
  157.             }
  158.  
  159.         }
  160.  
  161.         return string;
  162.     }
  163. }
  164. //Rotate13
  165. var PhProxy_Rot13 = {
  166.     _rawurlencode : function (str) {
  167.         return encodeURIComponent(str).replace(/!/g, '%21')
  168.                                       .replace(/'/g, '%27').replace(/\(/g, '%28')
  169.                                       .replace(/\)/g, '%29').replace(/\*/g, '%2A');
  170.     },    
  171.     
  172.     _rot13 : function (str) {
  173.         return str.replace(/[a-zA-Z]/g, function(c){
  174.             return String.fromCharCode((c <= "Z" ? 90 : 122) >= (c = c.charCodeAt(0) + 13) ? c : c - 26);
  175.         });
  176.     },
  177.     
  178.     encode : function (input) {
  179.         return this._rawurlencode(this._rot13(input));
  180.     },
  181.     
  182.     decode : function (input) {
  183.         [url, extra] = PhProxy_Base64._modifications_before_decode_for_phproxy (input)
  184.  
  185.         try {
  186.             var temp = decodeURIComponent(decodeURIComponent(url));
  187.         } catch(e) {
  188.             temp = url;
  189.         }
  190.  
  191.         var rm = extra.indexOf ("?hl=");
  192.         if (rm != -1)
  193.             extra = extra.substring(0, rm);
  194.         
  195.         return this._rot13(temp).replace('&', '&').replace('&', '&') + extra;
  196.     }    
  197. }
  198.  
  199.  
  200. // for glype
  201. var PhProxy_Glype_decode = {
  202.     run : function(str){
  203.         tSTR = "";
  204.         for(i=0;i<str.length;){        
  205.             if(this.encodeURIbycharacter(str.substr(i,1))){
  206.                 tSTR += this.encodeURIbycharacter(str.substr(i,1));
  207.                 i++;
  208.             }
  209.             if(this.encodeURIbycharacter(str.substr(i,2))){
  210.                 tSTR += this.encodeURIbycharacter(str.substr(i,2));
  211.                 i+=2;
  212.             }
  213.             if(this.encodeURIbycharacter(str.substr(i,3))){
  214.                 tSTR += this.encodeURIbycharacter(str.substr(i,3));
  215.                 i+=3;
  216.             }
  217.             else{
  218.                 tSTR += str.substr(i,1);
  219.                 i++;
  220.             }
  221.         }
  222.         return tSTR;
  223.     },
  224.  
  225.     encodeURIbycharacter : function(ch) {
  226.        if (ch == "+") { return "%20"; }   
  227.        if (ch == "%20") { return " "; }
  228.        if (ch == "%21") { return "!"; }
  229.        if (ch == "%23") { return "#"; }
  230.        if (ch == "%24") { return "$"; }
  231.        if (ch == "%26") { return "&"; }
  232.        if (ch == "%27") { return "\""; }
  233.        if (ch == "%28") { return "("; }
  234.        if (ch == "%29") { return ")"; }
  235.        if (ch == "%2A") { return "*"; }
  236.        if (ch == "%2B") { return "+"; }
  237.        if (ch == "%2C") { return ","; }
  238.        if (ch == "%2F") { return "/"; }
  239.        if (ch == "%3A") { return ":"; }
  240.        if (ch == "%3B") { return ";"; }
  241.        if (ch == "%3D") { return "="; }
  242.        if (ch == "%3F") { return "?"; }
  243.        if (ch == "%40") { return "@"; }
  244.        if (ch == "%7E") { return "~"; }
  245.        if (ch == "%80") { return "%E2%82%AC"; }
  246.        if (ch == "%81") { return "%C2%81"; }
  247.        if (ch == "%82") { return "%E2%80%9A"; }
  248.        if (ch == "%83") { return "%C6%92"; }
  249.        if (ch == "%84") { return "%E2%80%9E"; }
  250.        if (ch == "%85") { return "%E2%80%A6"; }
  251.        if (ch == "%86") { return "%E2%80%A0"; }
  252.        if (ch == "%87") { return "%E2%80%A1"; }
  253.        if (ch == "%88") { return "%CB%86"; }
  254.        if (ch == "%89") { return "%E2%80%B0"; }
  255.        if (ch == "%8A") { return "%C5%A0"; }
  256.        if (ch == "%8B") { return "%E2%80%B9"; }
  257.        if (ch == "%8C") { return "%C5%92"; }
  258.        if (ch == "%8D") { return "%C2%8D"; }
  259.        if (ch == "%8E") { return "%C5%BD"; }
  260.        if (ch == "%8F") { return "%C2%8F"; }
  261.        if (ch == "%90") { return "%C2%90"; }
  262.        if (ch == "%91") { return "%E2%80%98"; }
  263.        if (ch == "%92") { return "%E2%80%99"; }
  264.        if (ch == "%93") { return "%E2%80%9C"; }
  265.        if (ch == "%94") { return "%E2%80%9D"; }
  266.        if (ch == "%95") { return "%E2%80%A2"; }
  267.        if (ch == "%96") { return "%E2%80%93"; }
  268.        if (ch == "%97") { return "%E2%80%94"; }
  269.        if (ch == "%98") { return "%CB%9C"; }
  270.        if (ch == "%99") { return "%E2%84%A2"; }
  271.        if (ch == "%9A") { return "%C5%A1"; }
  272.        if (ch == "%9B") { return "%E2%80%BA"; }
  273.        if (ch == "%9C") { return "%C5%93"; }
  274.        if (ch == "%9D") { return "%C2%9D"; }
  275.        if (ch == "%9E") { return "%C5%BE"; }
  276.        if (ch == "%9F") { return "%C5%B8"; }
  277.        if (ch == "%A0") { return "%C2%A0"; }
  278.        if (ch == "%A1") { return "%C2%A1"; }
  279.        if (ch == "%A2") { return "%C2%A2"; }
  280.        if (ch == "%A3") { return "%C2%A3"; }
  281.        if (ch == "%A4") { return "%C2%A4"; }
  282.        if (ch == "%A5") { return "%C2%A5"; }
  283.        if (ch == "%A6") { return "%C2%A6"; }
  284.        if (ch == "%A7") { return "%C2%A7"; }
  285.        if (ch == "%A8") { return "%C2%A8"; }
  286.        if (ch == "%A9") { return "%C2%A9"; }
  287.        if (ch == "%AA") { return "%C2%AA"; }
  288.        if (ch == "%AB") { return "%C2%AB"; }
  289.        if (ch == "%AC") { return "%C2%AC"; }
  290.        if (ch == "%AD") { return "%C2%AD"; }
  291.        if (ch == "%AE") { return "%C2%AE"; }
  292.        if (ch == "%AF") { return "%C2%AF"; }
  293.        if (ch == "%B0") { return "%C2%B0"; }
  294.        if (ch == "%B1") { return "%C2%B1"; }
  295.        if (ch == "%B2") { return "%C2%B2"; }
  296.        if (ch == "%B3") { return "%C2%B3"; }
  297.        if (ch == "%B4") { return "%C2%B4"; }
  298.        if (ch == "%B5") { return "%C2%B5"; }
  299.        if (ch == "%B6") { return "%C2%B6"; }
  300.        if (ch == "%B7") { return "%C2%B7"; }
  301.        if (ch == "%B8") { return "%C2%B8"; }
  302.        if (ch == "%B9") { return "%C2%B9"; }
  303.        if (ch == "%BA") { return "%C2%BA"; }
  304.        if (ch == "%BB") { return "%C2%BB"; }
  305.        if (ch == "%BC") { return "%C2%BC"; }
  306.        if (ch == "%BD") { return "%C2%BD"; }
  307.        if (ch == "%BE") { return "%C2%BE"; }
  308.        if (ch == "%BF") { return "%C2%BF"; }
  309.        if (ch == "%C0") { return "%C3%80"; }
  310.        if (ch == "%C1") { return "%C3%81"; }
  311.        if (ch == "%C2") { return "%C3%82"; }
  312.        if (ch == "%C3") { return "%C3%83"; }
  313.        if (ch == "%C4") { return "%C3%84"; }
  314.        if (ch == "%C5") { return "%C3%85"; }
  315.        if (ch == "%C6") { return "%C3%86"; }
  316.        if (ch == "%C7") { return "%C3%87"; }
  317.        if (ch == "%C8") { return "%C3%88"; }
  318.        if (ch == "%C9") { return "%C3%89"; }
  319.        if (ch == "%CA") { return "%C3%8A"; }
  320.        if (ch == "%CB") { return "%C3%8B"; }
  321.        if (ch == "%CC") { return "%C3%8C"; }
  322.        if (ch == "%CD") { return "%C3%8D"; }
  323.        if (ch == "%CE") { return "%C3%8E"; }
  324.        if (ch == "%CF") { return "%C3%8F"; }
  325.        if (ch == "%D0") { return "%C3%90"; }
  326.        if (ch == "%D1") { return "%C3%91"; }
  327.        if (ch == "%D2") { return "%C3%92"; }
  328.        if (ch == "%D3") { return "%C3%93"; }
  329.        if (ch == "%D4") { return "%C3%94"; }
  330.        if (ch == "%D5") { return "%C3%95"; }
  331.        if (ch == "%D6") { return "%C3%96"; }
  332.        if (ch == "%D7") { return "%C3%97"; }
  333.        if (ch == "%D8") { return "%C3%98"; }
  334.        if (ch == "%D9") { return "%C3%99"; }
  335.        if (ch == "%DA") { return "%C3%9A"; }
  336.        if (ch == "%DB") { return "%C3%9B"; }
  337.        if (ch == "%DC") { return "%C3%9C"; }
  338.        if (ch == "%DD") { return "%C3%9D"; }
  339.        if (ch == "%DE") { return "%C3%9E"; }
  340.        if (ch == "%DF") { return "%C3%9F"; }
  341.        if (ch == "%E0") { return "%C3%A0"; }
  342.        if (ch == "%E1") { return "%C3%A1"; }
  343.        if (ch == "%E2") { return "%C3%A2"; }
  344.        if (ch == "%E3") { return "%C3%A3"; }
  345.        if (ch == "%E4") { return "%C3%A4"; }
  346.        if (ch == "%E5") { return "%C3%A5"; }
  347.        if (ch == "%E6") { return "%C3%A6"; }
  348.        if (ch == "%E7") { return "%C3%A7"; }
  349.        if (ch == "%E8") { return "%C3%A8"; }
  350.        if (ch == "%E9") { return "%C3%A9"; }
  351.        if (ch == "%EA") { return "%C3%AA"; }
  352.        if (ch == "%EB") { return "%C3%AB"; }
  353.        if (ch == "%EC") { return "%C3%AC"; }
  354.        if (ch == "%ED") { return "%C3%AD"; }
  355.        if (ch == "%EE") { return "%C3%AE"; }
  356.        if (ch == "%EF") { return "%C3%AF"; }
  357.        if (ch == "%F0") { return "%C3%B0"; }
  358.        if (ch == "%F1") { return "%C3%B1"; }
  359.        if (ch == "%F2") { return "%C3%B2"; }
  360.        if (ch == "%F3") { return "%C3%B3"; }
  361.        if (ch == "%F4") { return "%C3%B4"; }
  362.        if (ch == "%F5") { return "%C3%B5"; }
  363.        if (ch == "%F6") { return "%C3%B6"; }
  364.        if (ch == "%F7") { return "%C3%B7"; }
  365.        if (ch == "%F8") { return "%C3%B8"; }
  366.        if (ch == "%F9") { return "%C3%B9"; }
  367.        if (ch == "%FA") { return "%C3%BA"; }
  368.        if (ch == "%FB") { return "%C3%BB"; }
  369.        if (ch == "%FC") { return "%C3%BC"; }
  370.        if (ch == "%FD") { return "%C3%BD"; }
  371.        if (ch == "%FE") { return "%C3%BE"; }
  372.        if (ch == "%FF") { return "%C3%BF"; }
  373.        return "";
  374.     }
  375. }